body{
    color: white;
    font-family: sans-serif;
    margin: 0 auto;
    padding: 0;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    margin-top: 5px;
}

.img_logo {
    width: 260px;
    height: 60px;
}

hr {
    height: auto;
    width: 100%;
}

.description h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}
        
.description p {
    font-size: 1.2rem; 
    max-width: 800px;
    line-height: 1.8;
}

.main-content {
    padding: 0px 50px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.button {
    background-color: rgba(32, 32, 32, 0.919);
    color: rgb(245, 245, 245);
    font-size: 18px;
    text-decoration: none;
    padding: 14px 50px;
    border-radius: 25px;
    border-width: 3px;
    border-color: #ddd;
    border-style: solid;
    cursor: pointer;
    display: inline-block;
}
.button:hover{
    transform: scale(1.02);
}

